home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / stdwin / Gen / wsetselection.c < prev    next >
Text File  |  1995-12-21  |  354b  |  32 lines

  1. /* Dummy Selection Interface (always fails) */
  2.  
  3. #include "stdwin.h"
  4. #include "tools.h"
  5.  
  6. /*ARGSUSED*/
  7. int
  8. wsetselection(win, sel, data, len)
  9.     WINDOW *win;
  10.     int sel;
  11.     char *data;
  12.     int len;
  13. {
  14.     return 0;
  15. }
  16.  
  17. /*ARGSUSED*/
  18. char *
  19. wgetselection(sel, len_return)
  20.     int sel;
  21.     int *len_return;
  22. {
  23.     return NULL;
  24. }
  25.  
  26. /*ARGSUSED*/
  27. void
  28. wresetselection(sel)
  29.     int sel;
  30. {
  31. }
  32.